home *** CD-ROM | disk | FTP | other *** search
/ Delphi 2 - Developers' Solutions / Delphi 2 Developers' Solutions.iso / dds / demos / ftl / alj.txt < prev    next >
Encoding:
Text File  |  1995-09-06  |  621 b   |  18 lines

  1. The "Allow Local Jumps" menu item sets a flag in
  2. the OnAssertLocalJump method, which is called to 
  3. avoid processing some local jump links. If the
  4. flag is true, the OnAssertLocalJump method
  5. returns its Handled parameter as false; if the
  6. flag is false, Handled is set to true and no
  7. further processing of the local jump action
  8. takes place.
  9.  
  10. (Note: Assert methods normally are used to abort
  11. all further processing of an action, while the
  12. Handle Methods modify the processing. These
  13. two methods can each be overridden in code by
  14. direct assignment for Assert types and virtual
  15. overriding for Handle types.)
  16.  
  17.  
  18.